home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / dsp / 56000tar.z / 56000tar / 56000 / fntns / bingray.asm next >
Assembly Source File  |  1991-11-26  |  602b  |  19 lines

  1. ;
  2. ; This program originally available on the Motorola DSP bulletin board.
  3. ; It is provided under a DISCLAMER OF WARRANTY available from
  4. ; Motorola DSP Operation, 6501 Wm. Cannon Drive W., Austin, Tx., 78735.
  5. ; Binary-to-Gray Code Conversion Macro
  6. ; Last Update 30 Mar 87   Version 1.0
  7. ;
  8. bingray macro
  9. bingray ident   1,0
  10. ;
  11. ;       This macro converts a binary value in register A1 to a GRAY coded
  12. ;   number in A1.  Register X0 is used as a temporary register.
  13. ;
  14.         lsr     a  a1,x0        ;shift bits, copy a
  15.         eor     x0,a            ;xor adjacent bits to do gray code
  16.         endm
  17.